home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000151_news@columbia.edu_Sun Apr 16 23:44:36 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14800
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 16 Apr 1995 19:44:43 -0400
  3. Received: by apakabar.cc.columbia.edu id AA16061
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 16 Apr 1995 19:44:40 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: set file names
  9. Date: 16 Apr 1995 23:44:36 GMT
  10. Organization: Columbia University
  11. Lines: 32
  12. Message-Id: <3msa54$flr@apakabar.cc.columbia.edu>
  13. References: <19950416.171305.198951.NETNEWS@uicvm.uic.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <19950416.171305.198951.NETNEWS@uicvm.uic.edu>,
  18. Paul Clifford <pcliff@tigger.cc.uic.edu> wrote:
  19. : If I try to download a file to my local machine (using Linux c-kermit)
  20. : from a remote computer (which uses c-kermit), the filename always ends
  21. : up in uppercase. That is, if I issue the "receive" command from the
  22. : local computer after telling the remote box to "send foobar.txt", the file
  23. : will always appear as "FOOBAR.TXT". Typing "set file names
  24. : literal" on the remote or local, or both, computers doesn't seem to
  25. : change the result.
  26. If you just accept the defaults, here's what happens:
  27.  
  28. The sending C-Kermit uppercases the name, and the receiving C-Kermit
  29. lowercases it again.  So without any special commands, you should get
  30. the result you want most of the time.
  31.  
  32. The only time you need to "set file names literal" is if you do not want
  33. pathnames stripped, or if filenames contain multiple periods that you
  34. want to keep, or if they contain other "strange" characters that Kermit
  35. converts to "X".  Note that if "file names" are "converted" (the default,
  36. i.e. not "literal") at the sender, but *are* literal at the receiver,
  37. you will see the behavior you report.
  38.  
  39. Btw, you can also get some additional control in this area by using the
  40. "set { send, receive } pathnames" command, that was added in version
  41. 5A(190), and works (mostly) independently of "set file names".  You can
  42. even achieve nice effects like automatic directory creation.
  43.  
  44. Read about these issues in the manual, "Using C-Kermit", and in the
  45. ckcker.upd file for version 5A(190).
  46.  
  47. - Frank